home *** CD-ROM | disk | FTP | other *** search
/ PC User 2002 April / Disc 2 / PCUSER0402D2.iso / software / utils / files / wincron.exe / data1.cab / Sample_Scripts / show_variables.tg < prev    next >
Encoding:
Text File  |  2001-10-20  |  853 b   |  30 lines

  1. ##########################################################################
  2. # show_variables
  3. # This script dumps the WinCron variables.
  4. # See Also: AutoRun.tg, config.tg
  5. {
  6.     -name SHOW_VARIABLES.TG
  7.     -start 
  8.     -stop
  9.     
  10.     # show the base location where WinCron is installed
  11.     -action -print TG.ROOT_DIR = "%TG.ROOT_DIR%"
  12.         
  13.     # Show the default location to find USER scripts
  14.     -action -print TG.SCRIPT_DIR = "%TG.SCRIPT_DIR%"
  15.  
  16.     # Show the default location to find SAMPLE scripts
  17.     -action -print TG._SAMPLE_SCRIPT_DIR = "%TG.SAMPLE_SCRIPT_DIR%"
  18.  
  19.     # Show the default location to find SAMPLE C scripts
  20.     -action -print TG.SAMPLE_CSCRIPT_DIR = "%TG.SAMPLE_CSCRIPT_DIR%"
  21.  
  22.     # Show the default location to find USER include files for the 'C' interpreter
  23.     -action -print TG.INCLUDE_DIR = "%TG.INCLUDE_DIR%"
  24.  
  25.     # done!
  26.     -action -print done!
  27. }
  28.  
  29.  
  30.